From: Petter Reinholdtsen Date: Sat, 3 May 2025 03:50:32 +0000 (+0200) Subject: Added ebpf build rule mapping for armv8 to work with more armhf machines. X-Git-Tag: archive/raspbian/1.6.9-3+rpi1~1^2~5 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=c8d9fad475bcf26e25109f65a8e75401e8ff3856;p=opensnitch.git Added ebpf build rule mapping for armv8 to work with more armhf machines. Forwarded: https://github.com/evilsocket/opensnitch/pull/1326 Last-Update: 2025-04-20 Last-Update: 2025-04-20 Gbp-Pq: Name 1020-ebpf-armv8l.patch --- diff --git a/ebpf_prog/Makefile b/ebpf_prog/Makefile index d919ea4..8ce5fa5 100644 --- a/ebpf_prog/Makefile +++ b/ebpf_prog/Makefile @@ -19,6 +19,8 @@ else ifeq ($(ARCH),i686) ARCH := x86 else ifeq ($(ARCH),armv7l) ARCH := arm +else ifeq ($(ARCH),armv8l) + ARCH := arm else ifeq ($(ARCH),aarch64) ARCH := arm64 endif